home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Presen…tion Library 4 (Reseller) / Apple Ref. & Pres. Lib.v4.0.iso / 5-Fonts & Software / HyperCard 1.2.5 / Help Stacks / Help / card_74076.txt < prev    next >
Text File  |  1989-09-06  |  3KB  |  113 lines

  1. -- card: 74076 from stack: in
  2. -- bmap block id: 0
  3. -- flags: 0000
  4. -- background id: 4507
  5. -- name: 
  6.  
  7.  
  8. -- part 1 (button)
  9. -- low flags: 00
  10. -- high flags: 8004
  11. -- rect: left=340 top=58 right=83 bottom=477
  12. -- title width / last selected line: 0
  13. -- icon id / first selected line: 0 / 0
  14. -- text alignment: 1
  15. -- font id: 0
  16. -- text size: 12
  17. -- style flags: 0
  18. -- line height: 16
  19. -- part name: How old are you?
  20. ----- HyperTalk script -----
  21. on mouseUp
  22.   answer "Your age group, please" with card field 1 or card field 2 or card field 3
  23.   if it is "young" then put "You look quite mature."
  24.   if it is "old" then put "You look quite young."
  25.   if it is "not telling" then put "You look your age."
  26. end mouseUp
  27.  
  28.  
  29.  
  30. -- part 3 (field)
  31. -- low flags: 80
  32. -- high flags: 0001
  33. -- rect: left=360 top=106 right=132 bottom=480
  34. -- title width / last selected line: 0
  35. -- icon id / first selected line: 0 / 0
  36. -- text alignment: 0
  37. -- font id: 3
  38. -- text size: 12
  39. -- style flags: 0
  40. -- line height: 16
  41. -- part name: 
  42.  
  43.  
  44. -- part 4 (field)
  45. -- low flags: 80
  46. -- high flags: 0001
  47. -- rect: left=363 top=133 right=159 bottom=483
  48. -- title width / last selected line: 0
  49. -- icon id / first selected line: 0 / 0
  50. -- text alignment: 0
  51. -- font id: 3
  52. -- text size: 12
  53. -- style flags: 0
  54. -- line height: 16
  55. -- part name: 
  56.  
  57.  
  58. -- part 5 (field)
  59. -- low flags: 80
  60. -- high flags: 0001
  61. -- rect: left=363 top=160 right=186 bottom=483
  62. -- title width / last selected line: 0
  63. -- icon id / first selected line: 0 / 0
  64. -- text alignment: 0
  65. -- font id: 3
  66. -- text size: 12
  67. -- style flags: 0
  68. -- line height: 16
  69. -- part name: 
  70.  
  71.  
  72. -- part contents for background part 1
  73. ----- text -----
  74. Answer <question> with <reply> or <reply> or <reply>
  75.  
  76. Presents a dialog box on the screen asking the user to choose between the replies.  The question appears in the dialog box.  There can be one, two, or three possible replies.  The answer that the user chooses goes into "it", a local variable, and can be tested with the "if" command. Maximum length of each reply is 13 characters (depending on character width).   Contrast with "Ask".   
  77. Answer "How many copies?" with 1 or 2
  78. Answer "Are you happy?" with "yes" or "no" or "maybe"Answer "What's the answer?" with field 1 or field 2
  79.  
  80.  
  81. -- part contents for background part 2
  82. ----- text -----
  83. Answer
  84.  
  85. -- part contents for background part 44
  86. ----- text -----
  87. Form
  88.  
  89. What it does
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97. Examples
  98.  
  99. -- part contents for background part 43
  100. ----- text -----
  101. 337,122
  102.  
  103. -- part contents for card part 3
  104. ----- text -----
  105. young
  106.  
  107. -- part contents for card part 4
  108. ----- text -----
  109. old
  110.  
  111. -- part contents for card part 5
  112. ----- text -----
  113. not telling